1 /***
2 * MainAdapter
3 *
4 * This is an application adapter which
5 * is used to execute programs from the
6 * "main".
7 */
8
9 package junit.quilt.adapters;
10
11 import junit.quilt.framework.*;
12 import java.awt.event.ActionEvent;
13
14 public class MainAdapter
15 extends ProgramAdapter
16 {
17 public MainAdapter( String resources ) {
18 super( resources );
19 }
20
21 public void go() {
22
23 }
24 }
This page was automatically generated by Maven